This class is derived by CComboBox and is used by the framework to select a record of a table, usually you should not need to handle it directly and like all the rest of controls you set its parameters in the OnInitialUpdate().
void FillCombo( CDBrs * rs);
Used by the framework, fills the combo box with the desired recordset, the recordset must respect certain rules:
- the first field must be a char thpe
- the second field must be a numeric type whose value will be the index for the control.
void LocateOnValue(CString v)
Used by the framework, select the item passed as string.